home *** CD-ROM | disk | FTP | other *** search
/ Champak 140 / (Vol 140) Sep 19 2011.iso / Games / battle_of_the_bands.swf / scripts / menu_select_member.as < prev    next >
Text File  |  2011-09-19  |  969b  |  51 lines

  1. package
  2. {
  3.    import flash.display.MovieClip;
  4.    import flash.display.SimpleButton;
  5.    
  6.    public dynamic class menu_select_member extends MovieClip
  7.    {
  8.        
  9.       
  10.       public var selectedChar_mc:MovieClip;
  11.       
  12.       public var continue3_btn:SimpleButton;
  13.       
  14.       public var continue1_btn:SimpleButton;
  15.       
  16.       public var cs2_mc:MovieClip;
  17.       
  18.       public var continue2_btn:SimpleButton;
  19.       
  20.       public var cs3_mc:MovieClip;
  21.       
  22.       public var cs1_mc:MovieClip;
  23.       
  24.       public function menu_select_member()
  25.       {
  26.          super();
  27.          addFrameScript(0,frame1,1,frame2,2,frame3,3,frame4);
  28.       }
  29.       
  30.       function frame1() : *
  31.       {
  32.          stop();
  33.       }
  34.       
  35.       function frame3() : *
  36.       {
  37.          stop();
  38.       }
  39.       
  40.       function frame4() : *
  41.       {
  42.          stop();
  43.       }
  44.       
  45.       function frame2() : *
  46.       {
  47.          stop();
  48.       }
  49.    }
  50. }
  51.